home *** CD-ROM | disk | FTP | other *** search
/ SOHO - Exploring the Sun - 2003 Update / SOHO - Exploring the Sun - 2003 Update.iso / pc / data / main.dcr / Internal_64.ls < prev    next >
Encoding:
Text File  |  2003-02-25  |  375 b   |  16 lines

  1. on idle
  2.   global xold, idle_time_limit
  3.   if xold <> the mouseH then
  4.     set xold to the mouseH
  5.     startTimer()
  6.   end if
  7.   if (idle_time_limit <> 0) and (idle_time_limit < the timer) and (the frame > label("ulStart")) then
  8.     unLoad("ulStart", "ulEnd")
  9.     WaitAndGo("mainmenu")
  10.     startTimer()
  11.   end if
  12.   if the frame < label("ulStart") then
  13.     startTimer()
  14.   end if
  15. end
  16.